home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / MPW_TOOL / TOOLS / TOOLS_WI / ICON_8 / ICONT_FO / LFILE.H < prev    next >
Text File  |  1990-03-02  |  248b  |  11 lines

  1. /*
  2.  * A linked list of files named by link declarations is maintained using
  3.  *  lfile structures.
  4.  */
  5. struct lfile {
  6.    char *lf_name;        /* name of the file */
  7.    struct lfile *lf_link;    /* pointer to next file */
  8.    };
  9.  
  10. extern struct lfile *lfiles;
  11.